From: Paul Eggert Date: Mon, 6 Jun 2011 05:50:29 +0000 (-0700) Subject: Don't assume time_t can fit into int. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~3530^2~7 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=39fda263aca1be5ca5f1a9086ba83ae4e17916c5;p=emacs.git Don't assume time_t can fit into int. * buffer.h (struct buffer.modtime): Now time_t, not int. * fileio.c (Fvisited_file_modtime): No need for time_t cast now. * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value. --- 39fda263aca1be5ca5f1a9086ba83ae4e17916c5 diff --cc src/ChangeLog index b1b2b0d8285,ac8e543ea91..0edcebdbedf --- a/src/ChangeLog +++ b/src/ChangeLog @@@ -1,5 -1,10 +1,10 @@@ -2011-06-03 Paul Eggert +2011-06-06 Paul Eggert + Don't assume time_t can fit into int. + * buffer.h (struct buffer.modtime): Now time_t, not int. + * fileio.c (Fvisited_file_modtime): No need for time_t cast now. + * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value. + Minor fixes for signed vs unsigned integers. * character.h (MAYBE_UNIFY_CHAR): * charset.c (maybe_unify_char):